home *** CD-ROM | disk | FTP | other *** search
-
-
- <!-- TWO STEPS TO INSTALL CALORIES BURNED:
-
- 1. Paste the specified coding into the HEAD of your HTML document
- 2. Put the last code into the BODY of your HTML document -->
-
- <!-- STEP ONE: Copy this code into the HEAD your HTML document -->
-
- <HEAD>
-
- <SCRIPT LANGUAGE="JavaScript">
-
- <!-- This script and many more are available online from -->
- <!-- The JavaScript Source!! http://javascriptsource.com -->
-
- <!-- Begin
- var myWeight;
- var myDistance;
- function HowMany(form) {
- var difference;
- difference = (myDistance * myWeight) * .653;
- form.Fdiff.value = difference;
-
- if (difference < 100) {
- form.comment.value="You better start working!";
- }
- if (difference > 101 && difference < 200) {
- form.comment.value="Nice run, but you can do better.";
- }
- if (difference > 201 && difference < 300) {
- form.comment.value="Very good! Push above 300 next time.";
- }
- if (difference > 301 && difference < 500) {
- form.comment.value="Great! Your a runner.....keep it up!";
- }
- if (difference > 501 && difference < 700) {
- form.comment.value="Bill Rogers move over!";
- }
- if (difference > 701) {
- form.comment.value="Your my hero! Have a jelly doughnut.";
- }
- }
- function SetMyWeight(weight) {
- myWeight = weight.value;
- }
- function SetmyDistance(dis) {
- myDistance = dis.value;
- }
- function ClearForm(form){
- form.myWeight.value = "";
- form.myDistance.value = "";
- form.Fdiff.value = "";
- form.comment.value = "";
- }
- // End -->
- </SCRIPT>
-
- <!-- STEP TWO: Copy this code into the BODY of your HTML document -->
-
- <BODY>
-
- <CENTER>
- <FORM METHOD="POST">
- <TABLE border=3>
- <TR>
- <TR>
- <TD><div align=center>Your<br>Weight</div></TD>
- <TD><div align=center>Miles<br>run</div></TD>
- <TD><div align=center>Calories<br>burned</div></TD>
- <TD><INPUT TYPE=BUTTON ONCLICK="HowMany(this.form)" VALUE="Calculate"></TD>
- </TR>
- <tr>
- <TD><div
-